1   package com.iluwatar;
2   
3   public abstract class Prototype implements Cloneable {
4   
5   	@Override
6   	public abstract Object clone() throws CloneNotSupportedException;
7   
8   }